'Declaration
Public Function Split( _ ByVal position As T _ ) As IEnumerable(Of Range(Of T))
public IEnumerable<Range<T>> Split( T position )
Parameters
- position
- The position to split the range at.
Return Value
The split ranges.
'Declaration
Public Function Split( _ ByVal position As T _ ) As IEnumerable(Of Range(Of T))
public IEnumerable<Range<T>> Split( T position )
Exception | Description |
---|---|
System.ArgumentNullException | position is null. |
System.ArgumentException | position is not contained within the range. |